home *** CD-ROM | disk | FTP | other *** search
/ Geni@l B1 3 / Geni@l B1 3.iso / Mac_OSX / Install Flash Player 10 UB.dmg / Adobe Flash Player.pkg / Contents / Resources / RemoveUserFPInstall.applescript < prev    next >
Text File  |  2009-02-05  |  766b  |  23 lines

  1. tell application "Finder"
  2.     try
  3.         move file ((path to home folder as text) & "Library:Internet Plug-Ins:Shockwave Flash NP-PPC") to trash
  4.     on error errMsg number errorNumber
  5.     -- Ignore & absorb errors.
  6.     end try
  7.     try
  8.         move file ((path to home folder as text) & "Library:Internet Plug-Ins:Flash Player.plugin") to trash
  9.     on error errMsg number errorNumber
  10.     -- Ignore & absorb errors.
  11.     end try
  12.     try
  13.         move file ((path to home folder as text) & "Library:Internet Plug-Ins:Flash Player Enabler.plugin") to trash
  14.     on error errMsg number errorNumber
  15.     -- Ignore & absorb errors.
  16.     end try
  17.     try
  18.         move file ((path to home folder as text) & "Library:Internet Plug-Ins:flashplayer.xpt") to trash
  19.     on error errMsg number errorNumber
  20.     -- Ignore & absorb errors.
  21.     end try
  22. end tell
  23.